home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-08-14 | 444 b | 18 lines | [TEXT/ToyS] |
- -- define the standard HTTP header
- set LF to ASCII character (10)
- set CR to return
- set CRLF to CR & LF
- set http_10_header to "HTTP/1.0 200 OK" & CRLF & ¬
- "Server: MacHTTP" & CRLF & ¬
- "MIME-Version: 1.0" & CRLF & ¬
- "Content-type: text/html" & CRLF & CRLF
-
- -- return the results as an HTML file
- return http_10_header & ¬
- "<html>" & ¬
- "<head>" & ¬
- "<title>Hello, World</title>" & ¬
- "</head>" & ¬
- "<body>Hello, World!</body" & ¬
- "</html>"
-